body{
    font-family: Arial, sans-serif;
    background-color:#f8f5f2;
    display:flex;
    flex-direction:column;
    padding-top: 80px;
    min-height:100vh;
}

.login-container{
    background:white;
    padding:35px;
    width:350px;
    margin:120px auto 40px auto;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    text-align:center;

}
header{
display:flex;
justify-content:space-between;
padding:20px;
background:#4b2e2e;
color:white;
}
nav a{
color:white;
margin-left:20px;
text-decoration:none;
}


h1 {
    color: #3e2723;
    margin-bottom: 5px;
}

p {
    color: #555;
    margin-bottom: 20px;
}

label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

input:focus {
    border-color: #6b4f3b;
    box-shadow: 0 0 4px rgba(107, 79, 59, 0.3);
    outline: none;
}

.options {
    text-align: right;
    font-size: 13px;
    margin: 12px 0;
}

.password-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    padding: 0 10px;
    margin-top: 5px;
}

.input-password {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    flex: 1;
    width: auto;
    margin-top: 0;
}

.img-view {
    height: 22px;
    width: 22px;
    cursor: pointer;
    opacity: 0.7;
    margin-left: 5px;
}

.img-view:hover {
    opacity: 1;
}

button {
    width: 100%;
    padding: 10px;
    background: #3e2723;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #543c2c;
}

.signup-text {
    margin-top: 15px;
    font-size: 14px;
}

a {
    text-decoration: underline;
}

.cta {
    background: #3b2b2b;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.btn {
    background: #ffcc80;
    color: #3e2723;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    width: auto;
}

.btn:hover {
    background: #fff3e0;
}

footer{
    margin-top:auto;
    text-align:center;
    padding:15px;
    background:#4b2e2b;
    color:white;
}

.cta{
    background:#3b2b2b;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.btn{
    background:#ffcc80;
    color:#3e2723;
    padding:10px 25px;
    border-radius:50px;   
    font-size:14px;
    cursor:pointer;
    margin-top:20px;
    width: auto;
}
.btn:hover{
  background:#fff3e0;
}

footer{
    background:#2a2a2a;
    color:white;
    text-align:center;
    padding:25px;
    margin-top: auto;
}
.cta{
    background:#3b2b2b;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.btn{
    background:#ffcc80;
    color:#3e2723;
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    cursor:pointer;
    margin-top:20px;
    width:auto;
}

.btn:hover{
    background:#fff3e0;
}



.footer {
  background: #2b1d1a;
  color: #ccc;
  padding: 40px 8% 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffcc80;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 13px;
}


@media(max-width:768px){

    .login-container{
        width:90%;
        padding:25px;
    }

    .cta{
        padding:30px 15px;
    }

    footer{
        font-size:14px;
        padding:20px;
    }

}